ABC132 C - Divide the Problems
https://atcoder.jp/contests/abc132/tasks/abc132_c
提出
code: python
n = int(input())
d = sorted(list(map(int, input().split())))
print(d
n//2
- d
(n//2)-1
)